/* -------------------------------------------------------------------
 * Plugin Name           : Collyshefra - Responsive Modern Pricing Table
 * Author Name           : Yucel Yilmaz
 * Author URI            : https://codecanyon.net/user/aip_theme3434
 * Created Date          : 28 January 2020
 * Version               : 1.0
 * File Name             : style.css
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
   Base                               
   ------------------------ /
 * 01.Base
 * 02.Typography
 * 03.Helper Class
   ------------------------ /
   Components                               
   ------------------------ /
 * 04.Buttons  
   ------------------------ /
   Layout                               
   ------------------------ /
 * 05.Pricing
 * 06.Footer
 */
/* ---------------------------------------------------------------- */
/* 01.Base                               
/* ---------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

body, html {
  font-size: 16px;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  color: #677294;
}

a:link, a:hover, a:active, a:visited {
  text-decoration: none;
  color: #677294;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

textarea, textarea:focus, input, input:focus, button, button:focus {
  outline: none;
  resize: inherit;
}

/* ---------------------------------------------------------------- */
/* 02.Typography                                                  
/* ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins-Bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  color: #000;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 55px;
}

h2, .h2 {
  font-size: 42px;
}

h3, .h3 {
  font-size: 44px;
}

h4, .h4 {
  font-size: 22px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

p {
  color: #677294;
  margin: 0;
  line-height: 28px;
}

/* ---------------------------------------------------------------- */
/* 03.Helper Class                                                  
/* ---------------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-heading .section-title {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.section-heading .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  background: #0A376E;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pb-minus-70 {
  padding-bottom: 70px;
}

/* ---------------------------------------------------------------- */
/* 04.Buttons                                                   
/* ---------------------------------------------------------------- */
.default-button {
  border-radius: 5px;
  display: inline-block;
  background-color: #0A376E;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 40px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #fff;
}

.default-button:after {
  display: none;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: rgba(0, 0, 0, 0.247);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  top: 50%;
  left: 50%;
  -webkit-animation: ripple 1s;
          animation: ripple 1s;
  opacity: 0;
}

.default-button:focus:not(:active)::after {
  display: block;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

/* ---------------------------------------------------------------- */
/* 05.Pricing                           
/* ---------------------------------------------------------------- */
.price-toggle-wrap {
  text-align: center;
  display: inline-block;
  margin: 0 auto 60px auto;
  padding: 10px;
  border-radius: 100px;
  -webkit-box-shadow: 0 10px 28px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 10px 28px 0 rgba(61, 82, 96, 0.15);
}

.price-toggle-wrap a {
  padding: 16px 40px;
  float: left;
  border-radius: 100px;
  margin-right: 10px;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: #e7fbf4;
  color: #0A376E;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.price-toggle-wrap a.active {
  background-position: center;
  background: #0A376E;
  color: #fff;
}

.pricing-tab-toggle-content {
  display: none;
}

.pricing-tab-toggle-content.active {
  display: block;
}

.price-table {
  border-radius: 50px;
  text-align: center;
  padding: 20px 10px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15);
}

.price-table:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.price-table .price-icon {
  display: inline-block;
}

.price-table .price-icon i {
  display: inline-block;
  height: 70px;
  width: 70px;
  text-align: center;
  font-size: 30px;
  line-height: 70px;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #0A376E;
  color: #fff;
}

.price-table .price-value {
  margin-top: 20px;
  margin-bottom: 20px;
}

.price-table .price-value span {
  font-size: 1rem;
}

.price-table .price-value b {
  font-size: 2.0rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
  color: #050626;
}

.price-table .price-text {
  margin-bottom: 30px;
}

.price-table .price-text span {
  text-align: center;
  border-radius: 100px;
  display: inline-block;
  padding: 11px 40px;
}

.price-table .price-list li {
  margin-top: 15px;
}

.price-table .price-list li:first-child {
  margin-top: 0;
}

.price-table .price-footer {
  margin-top: 30px;
}

.price-table .price-footer .price-block-btn {
  display: block;
  border-radius: 50px;
  color: #fff;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
  .price-table-resp:nth-child(3) {
    margin-top: 30px;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
  .price-table-resp {
    margin-top: 30px;
  }
  .price-table-resp:first-child {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
/* Size reduced because it does not fit on this device
 * Extra small devices (Iphone 5, less than 320px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 320px) {
  .price-toggle-wrap a {
    padding: 16px 25px;
  }
}

/* ---------------------------------------------------------------- */
/* 06.Footer                                                   
/* ---------------------------------------------------------------- */
.footer {
  background: #050626;
}

.footer .copyright-wrap {
  padding: 30px;
}

.footer .copyright-wrap .copyright-inner .copyright-text {
  text-align: center;
  color: #fff;
  opacity: 0.85;
}
/*# sourceMappingURL=style.css.map */